home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 2005 October / Computer Shopper 2005 October.iso / Toolkit / System / Eraser / EraserSetup.exe / {app} / Boot / eBoot.exe / eBoot.IMA / syslinux.cfg < prev    next >
Encoding:
Text File  |  2003-07-15  |  3.8 KB  |  123 lines

  1. # syslinux.cfg: Boot loader configuration file for Darik's Boot and Nuke.
  2.  
  3. #  WARNING: Only use notepad to edit this file.
  4. #
  5. #    This file is line and case sensitive. Ensure that your text editor does not
  6. #    automatically insert line breaks or otherwise apply automatic formatting.
  7. #
  8.  
  9.  
  10. # Set this option to zero if you wish to skip the boot prompt.
  11. PROMPT 1
  12.  
  13. # This label will be started if you just push enter at the boot prompt, or if
  14. # you set the PROMPT option above to zero.
  15. DEFAULT dban
  16.  
  17.  
  18. # NOTE: If you create a custom label, then ensure that the first eight
  19. #       characters in the label are unique.
  20.  
  21. LABEL  autonuke
  22. KERNEL kernel.bzi
  23. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke"
  24.  
  25. LABEL  dban
  26. KERNEL kernel.bzi
  27. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe"
  28.  
  29. LABEL  dod
  30. KERNEL kernel.bzi
  31. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method dod522022m"
  32.  
  33. LABEL  gutmann
  34. KERNEL kernel.bzi
  35. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method gutmann"
  36.  
  37. LABEL  ops2
  38. KERNEL kernel.bzi
  39. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method ops2"
  40.  
  41. LABEL  paranoid
  42. KERNEL kernel.bzi
  43. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method prng --rounds 8 --verify all"
  44.  
  45. LABEL  prng
  46. KERNEL kernel.bzi
  47. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method prng --rounds 8"
  48.  
  49. LABEL  quick
  50. KERNEL kernel.bzi
  51. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="dwipe --autonuke --method quick"
  52.  
  53.  
  54. LABEL  shell
  55. KERNEL kernel.bzi
  56. APPEND initrd=initrd.gz root=/dev/ram0 init=/rc quiet nuke="exec ash"
  57.  
  58.  
  59. # The DBAN kernel uses DevFS without devfsd, so you may not use conventional
  60. # device node file names in kernel options.
  61. #
  62. # Note that Linux 2.4.19+ will not boot with root=/dev/rd/0.  The /dev/ram0
  63. # name is, however, now hardcoded in 'init/do_mounts.c' so root=/dev/ram0 works
  64. # instead.  This violates the DevFS documentation and is probably a kernel bug.
  65. #
  66. # If a VGA or HGA video adapter is not found, then the first serial port
  67. # detected will be used as the system console.
  68.  
  69. # This option will start syslinux on the first serial port.
  70. #SERIAL 0
  71.  
  72. # This kernel option will force a serial console on the first serial port.
  73. #APPEND console=ttyS0,9600n8r [...]
  74.  
  75. # Print the product banner and liability disclaimer.
  76. DISPLAY warning.txt
  77.  
  78. # Extra screens.
  79. F1 warning.txt
  80. F2 about.txt
  81. F3 quick.txt
  82.  
  83.  
  84. # The Boot Prompt
  85. # ---------------
  86. #
  87. #  Usage: [label [kernel options] [nuke="dwipe [dwipe options]"]]
  88. #
  89. #  Dwipe Options:
  90. #
  91. #       --autonuke  Be really sure.
  92. #    -m --method    The wipe method to use.
  93. #    -r --rounds    The number of times to run the method.
  94. #       --verify    The verification level.
  95. #
  96. #  Dwipe Methods:
  97. #
  98. #    dod522022m     American Department of Defense 5220-22.M standard wipe.
  99. #    gutmann        Peter Gutmann's wipe.
  100. #    ops2           RCMP TSSIT OPS-II standard wipe.
  101. #    prng   random  PRNG stream wipe.
  102. #    quick  zero    Quick erase.
  103. #
  104. #  Verification Levels:
  105. #
  106. #    0  off         Do not read anything back from the device.
  107. #    1  last        Check whether the device is empty after wiping.
  108. #    2  all         Check whether all passes were written properly.
  109. #
  110. #  Notes:
  111. #
  112. #    * The rounds option does not apply to to the quick method. This method
  113. #      always runs one round.
  114. #
  115. #    * Use at least four rounds with the prng method. Using eight rounds with
  116. #      the prng method is recommended.
  117. #
  118. #    * The last pass of every method fills the device with zeros, except the
  119. #      ops2 method which fills the device with a random stream on its last pass.
  120. #
  121.  
  122. # eof
  123.